home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-07-15 | 1.1 KB | 57 lines | [TEXT/MPS ] |
- // UMouseInfo.h
- // Copyright © 1992 by Apple Computer, Inc. All rights reserved.
- // Kent Sandvik DTS
- // This file contains the TMapApplication class, the base application class
- // for the MouseInfo application
- // Version Info (latest first):
- //
- // <1> khs 1.0 First final version
- // <2> khs 1.0.1 Fixed a memory leak in TMapApplication::GetSleepValue()
-
-
- // INCLUDE FILES
-
- #ifndef __MOUSEINFO__
- #define __MOUSEINFO__
-
- #ifndef __INCLUDEFILES__
- #include "IncludeFiles.h"
- #endif
-
- #ifndef __MOUSEDOCUMENT__
- #include "UMouseDocument.h"
- #endif
-
- #ifndef __APPFRAMEADORNER__
- #include "UAppFrameAdorner.h"
- #endif
-
- // Our About Box support
- #ifndef __ABOUT__
- #include "About.h"
- #endif
-
-
-
- // CLASSES
- // TMapApplication, our application class
- class TMapApplication : public TApplication
- {
- public:
- TMapApplication();
- virtual pascal void IMapApplication(OSType fileType,
- OSType creator);
- virtual pascal TDocument* DoMakeDocument(CommandNumber,
- TFile*);
-
- virtual pascal void DoAboutBox();
-
- virtual pascal RgnHandle GetSleepRegion();
- };
-
-
-
-
- #endif __MOUSEINFO__
-
-